home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C++ / Applications / HyperCuber 2.0 / source / CKeyControlsDirector.h < prev    next >
Encoding:
Text File  |  1994-04-05  |  672 b   |  27 lines  |  [TEXT/KAHL]

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| This file contains the interface to the CKeyControlsDirector class.  The
  3. //| CKeyControlsDirector class supervises the controls dialog.
  4. //|________________________________________________________________________________
  5.  
  6. #pragma once
  7. #include <CDialogDirector.h>
  8.  
  9. CLASS CArray;
  10. CLASS CKeyControlsArrayPane;
  11.  
  12. class CKeyControlsDirector : public CDialogDirector
  13.     {
  14.  
  15.     CArray                     *array;
  16.     CKeyControlsArrayPane    *array_pane;
  17.  
  18.   public:
  19.  
  20.     void    IKeyControlsDirector(CDirectorOwner *supervisor);
  21.     void    DoCommand(long command);
  22.     void    TalkToUser(void);
  23.  
  24.     void    BuildArrayFromPrefs(void);
  25.     
  26.     };
  27.